home *** CD-ROM | disk | FTP | other *** search
- --= SID = SIMTEL20 Ada Software Repository Item Description File = SID =--
- -- UNIT NAME : EDITOR (ALED - Ada Line Editor)
- -- VERSION : 2.1
- -- REVIEW CODE :
- -- DDN ADDRESS : RCONN at SIMTEL20
- -- AUTHOR : Richard Conn
- -- : Texas Instruments
- -- : PO Box 801, MS 8007
- -- : McKinney, TX 75069
- -- COPYRIGHT : (c) 1984, 1985 Richard Conn
- -- DATE CREATED : 9 Nov 84
- -- DATE RELEASED : 5 Dec 84
- -- DATE LAST UPDATED : 15 Feb 85
- -- LOCATION : ASR
- -- ENVIRONMENT : DG MV 10000, ROLM ADE
- --= CLASSIFICATION ===============================================--
- -- CATEGORY LEVEL 1 : TEXT MANIPULATION
- -- CATEGORY LEVEL 2 : EDITORS
- -- CATEGORY LEVEL 3 : Editor 2
- -- CATEGORY LEVEL 4 :
- -- KEYWORD : EDITOR
- -- KEYWORD : LINE-ORIENTED EDITOR
- -- KEYWORD : INPUT-LINE EDITOR
- -- INDEX : Editor
- -- INDEX : Line-Oriented Editor
- -- INDEX : Editor, Line-Oriented
- -- INDEX : Input-Line Editor
- -- INDEX : Editor, Input-Line
- -- TAXONOMY :
- -- DEPENDENCIES :
- -- SEE ALSO : PD2:<ADA.EDITORS>ED
- --= FILE LISTING ===============================================--
- -- FILE SPECS : PD:<ADA.EDITORS>ED2.*
- -- DIRECTORY DISPLAY :
- -- Directory PD:<ADA.EDITORS>
- -- File Name Byte Count Line Count
- -- --------------- ---------- ----------
- -- ED2.DOC 47230 1584
- -- ED2.PRO 7266 135
- -- ED2.SRC 74495 2128
- -- =============== ========== ==========
- -- 3 Files 128991 3847
- --= ABSTRACT ===============================================--
- -- ALED is designed to edit text files. Upon invocation, ALED
- -- prompts the user for a file name. If the file exists, its contents
- -- (lines) are read in and prepared for editing; if the file does not
- -- exist, the file is created and the empty buffer is prepared for
- -- editing. ALED is an interactive editor, accepting singlechar
- -- commands, filling in a command prompt (for more info as needed), and
- -- performing its functions in realtime while the user watches. The
- -- functions provided include (but are not limited to) the following:
- --
- -- * List Lines
- -- * Insert a Group of Lines into the Edit Buffer
- -- * Delete Lines
- -- * String Search and String Substitution
- -- * Movement Within the Edit Buffer
- -- * Reading in a File After a Specified Line
- -- * Writing out a Range of Lines to a File
- -- * Built-in, online Documentation (Summary)
- --= REVISION HISTORY ===============================================--
- --
- -- DATE VERSION AUTHOR HISTORY
- -- 12/5/84 1.0 Richard Conn Initial Release
- -- 1/21/85 2.0 Richard Conn Production version
- -- 2/15/85 2.1 Richard Conn Minor bug fix
- --= RELEASE NOTICE ===============================================--
- -- This prologue must be included in all copies of this software.
- --
- -- This software is copyright by the author.
- --
- -- This software is released to the Ada community.
- -- This software is released to the Public Domain (note:
- -- software released to the Public Domain is not subject
- -- to copyright protection).
- -- Restrictions on use or distribution: NONE
- --= DISCLAIMER ===============================================--
- -- This software and its documentation are provided "AS IS" and
- -- without any expressed or implied warranties whatsoever. No warranties
- -- as to performance, merchantability, or fitness for a particular
- -- purpose exist.
- -- The user is advised to test the software thoroughly before
- -- relying on it. The user must assume the entire risk and liability of
- -- using this software. In no event shall any person or organization of
- -- people be held responsible for any direct, indirect, consequential or
- -- inconsequential damages or lost profits.
- --======================================================================--
-